Midone - Laravel Admin Dashboard Starter Kit Getting Started File Structure Installation Style Customization Javascript Attributions Support Changelog

Installation

Frontend Assets & Dependencies

The following process will be used to install admin dashboard using package manager.

  • Install Node.js : Please install latest version of Node.js from https://nodejs.org
  • Install Yarn from https://yarnpkg.com
  • Extract downloaded project files : Extract the admin dashboard to your suitable directory or folder.
  • Access console : Open node.js console.
  • In console, navigate to the location where main folder is extracted.
  • Navigate to the Source folder inside main folder.
  • Run yarn install command to install package dependencies.
  • Run yarn run watch to start compiling assets or yarn run dev for production use.

Laravel Dependencies

The following process will be used to install admin dashboard using package manager.

  • Install composer : Please install latest version of composer from https://getcomposer.org/
  • Access console : Open composer console.
  • In console, navigate to the location where main folder is extracted.
  • Navigate to the Source folder inside main folder.
  • Run composer install command to install laravel dependencies.
  • Duplicate .env.example file and rename it to .env adjust database connection depends on your local database setup.
  • Run php artisan migrate --seed to setup the database structure & seeder.
  • Since this starter kit comes with pre made authentication feature, you can start to login with
    this default credentials email: midone@left4code.com / password: password.
  • The project is ready to use!